(C) 1996 AROS - The Amiga Replacement OS
NAME
#include <string.h>
void * memchr()
SYNOPSIS
const void * mem
int c
size_t n
FUNCTION
Copy the contents of a part of memory to another. Both areas must not overlap. If they do, use memmove().
INPUTS
dest
The first byte of the destination area in memory
src
The first byte of the source area in memory
count
How many bytes to copy
RESULT
dest.
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
01.01.1997 ldp
Changed clib to proto
11.12.1996 aros
Added/corrected headers
11.12.1996 aros
Need cast to get rid of const
10.12.1996 aros
New functions